home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Champak 50
/
Volume 50 - JOGO DISK .iso
/
Games
/
moonstonemadness.swf
/
scripts
/
__Packages
/
MSLost.as
< prev
next >
Wrap
Text File
|
2007-09-27
|
583b
|
25 lines
class MSLost extends SideScroller.StaticObject
{
function MSLost(__mcRef, __oLayer)
{
super(__mcRef,__oLayer);
this.bObjectBlock = false;
this.bObjectSpecial = false;
this.setState("Out");
this.__get__ParentLayer().doAddListener(this);
}
function doDestroy()
{
this.__get__ParentLayer().doRemoveListener(this);
super.doDestroy();
}
function doOut()
{
if(this.isStateComplete())
{
this.__get__ParentLayer().doRemoveListener(this);
this.doDestroy();
}
}
}